home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1998 September
/
EnigmA AMIGA RUN 30 (1998)(G.R. Edizioni)(IT)[!][issue 1998-09].iso
/
earkit
/
news
/
thor
/
rexx
/
fse
/
removeuu.fse
< prev
next >
Wrap
Text File
|
1998-07-09
|
467b
|
30 lines
/* $VER: RemoveUU.fse 1.0 (4.8.95)
* Remove quoted (with '>') uuencode text from the fse
* Author: Magne Østlyngen
*/
options results
MSGLENGTH
lines=result
i=1
do forever
SETPOS 1 i
GETLINE i
ln=result
if left(ln,7)='>begin ' then do
i=i+1
SETPOS 1 i
do until left(ln,4)='>end'
GETLINE i
ln=result
DELETELINES
lines=lines-1
if i>lines then leave
end
end
i=i+1
if i>lines then leave
end
SETPOS 1 1
exit